home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / Programming Contest / Secret Solutions Folder / Problem 10 - Interpreter / Solution.h < prev   
Encoding:
C/C++ Source or Header  |  1998-06-08  |  339 b   |  21 lines  |  [TEXT/CWIE]

  1. #ifndef __SOLUTION_H__
  2. #define __SOLUTION_H__
  3.  
  4. // Do not modify this file
  5.  
  6. #include <MacTypes.h>
  7. #include <Files.h>
  8.  
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif // __cplusplus
  12.  
  13. typedef SInt32 RegisterArray[26];
  14.  
  15. pascal void Interpret( Handle source,  RegisterArray result );
  16.  
  17. #ifdef __cplusplus
  18. }
  19. #endif // __cplusplus
  20.  
  21. #endif // __SOLUTION_H__